@charset "utf-8";


#header{
    width: 100%;
    z-index: 99999;
    transition:all .3s;
}

.header_flex{
    height: 100px;
    align-items: center;
    padding-left: 160px;
    transition:all .5s;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    position: relative;
    z-index: 999;
}
.logo{
    flex: 1;
    height:55px;
    transition:all .5s;
}
.logo img{
    height: 100%;
    width: auto;
}
.top_right_btn{
    flex: 1;
    justify-content:flex-end;
}
.header_wrap .icons{
    color:#fff;
    background: #0659ae;
    height:100px;
    align-items: center;
    width: 220px;
    justify-content: center;
    padding-right: 75px;
    margin-left: 80px;
    position: relative;
    font-size:14px;
    transition:all .5s;
}
.header_wrap .icons i{
    font-size:16px;
    padding: 0 30px 0 0;
    cursor: pointer;
}
.header_wrap .icons a{
    padding: 0 0 0 30px;
    color:#fff;
}
.header_wrap .icons:before{
    content:'';
    width: 0;
    height: 0;
    border-bottom: 100px solid #0659ae;
    border-left: 30px solid transparent;
    position: absolute;
    left: -30px;
    top: 0;
    transition:all .5s;
}
.header_wrap .icons:after{
    content:'';
    width: 10px;
    height: 100px;
    background: #ffb400;
    position: absolute;
    left: -25px;
    top: 0;
    transform: skew(-17deg);
    transition:all .5s;
}

.nav_pc{
    
}
.nav_pc li{
    display: inline-block;
    padding:0 40px;
    position: relative;
}
.nav_pc li>a{
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    line-height:100px;
    color:#222;
    font-weight: bold;
}

.nav_pc li.cur>a,.nav_pc li a:hover{
    font-weight: bold;
    color:#ffb607;
}
.nav_pc li .sub_nav{
    position: absolute;
    left: 0;
    width: 100%;
    background:#fff;
    transition: all 300ms;
    top:70px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 3px 15px rgba(0,0,0,.2);
}
.nav_pc li:hover .sub_nav{
    top:90px;
    opacity: 1;
    visibility: visible;
}
.nav_pc li .sub_nav a{
    display: block;
    text-align: center;
    color: #666;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 12px 20px;
    border-bottom:1px solid rgba(255,255,255,.12);
}
.nav_pc li .sub_nav a:hover{
    background:#f7b52d;
    color:#000;
    font-weight: normal;
}
#header.header_on .header_flex{
    height: 70px;
    position: fixed;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}
#header.header_on .header_flex .logo{
    height: 40px;
}
#header.header_on .header_wrap .icons{
    height: 70px;
}
#header.header_on .header_wrap .icons:before{
    border-bottom-width: 70px;
}
#header.header_on .header_wrap .icons:after{
    height: 70px;
    transform: skew(-23deg);
}
#header.header_on .nav_pc li:hover .sub_nav{
    top: 80px;
}
.topsearch{
    line-height:100px;
}
.topsearch i{
    font-size:18px;
    margin:0 7px;
    color:#005ead;
    cursor: pointer;
}

.mobile_banner{
    display: none;
}

.phone_top_nav{
    display: none;
}
.phone_top_nav .sub_nav_phone{
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.phone_top_nav .sub_nav_phone a{
    display: inline-block;
    font-size: 14px;
    margin-right: 20px;
    color: #333;
}
.header_icon{
    justify-content: flex-end;
}
.header_icon .ico{
    font-size: 14px;
    color:#000;
    line-height: 85px;
    margin-right: 15px;
}
.header_icon .ico a{
    color: #000;
}
.header_icon .ico i{
    background: #114c97;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-right: 7px;
}
.phone_menu_btn{
    font-size: 16px;
    color: #000;
    display: none;
}
.phone_menu_btn .line{
    position: relative;
    display: block;
    width:19px;
    height: 2px;
    margin: 4px 0;
    background: var(--theme-color);
    -webkit-transition: .3s;
    transition: .3s;
}
.phone_menu_btn span{
    position: absolute;
    left: 32px;
    top: 2px;
}
.phone_top_nav{
    position: fixed;
    width: 100%;
    z-index: 9999;
    background: #fff;
    height: 100%;
    border-top:1px solid #ccc;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    padding: 60px 30px 30px;
    transition: .5s;
    transform: translateY(-100%);
}

.phone_top_nav li>a{
    display: block;
    line-height: 50px;
    font-size: 16px;
    color: #5a5657;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}
.phone_top_nav .sub_nav{
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.phone_top_nav .sub_nav a{
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    color: #333;
}
.header_active .line:nth-of-type(1){
    -webkit-transform: translateY(5.5px) rotate(-45deg);
    -ms-transform: translateY(5.5px) rotate(-45deg);
    transform: translateY(5.5px) rotate(-45deg);
}
.header_active .line:nth-of-type(2){
    opacity:0;
}
.header_active .line:nth-of-type(3){
    -webkit-transform: translateY(-6.5px) rotate(45deg);
    -ms-transform: translateY(-6.5px) rotate(45deg);
    transform: translateY(-6.5px) rotate(45deg);
}
.header_active .phone_top_nav{
    transform: translateY(0);
}


.fixed_search{
    background:#fff;
    left: 0;
    position: fixed;
    right: 0;
    top:-50%;
    z-index: 998;
    height: 130px;
    transition:all .3s;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

.fixed_search_on{
    top: 70px;
}

.fixed_search form{
    left: 10%;
    position: absolute;
    right: 10%;
    top:55px;
    z-index: 99999999;
    transition:all .5s;
}

.fixed_search .key{
    width: 100%;
    height:50px;
    font-size:16px;
    line-height:50px;
    color:#333;
    padding: 0 20px;
    border:2px solid var(--theme-color);
    outline: none;
}
.fixed_search .key::placeholder{
    color:var(--theme-color);
    font-weight: normal;
}
.fixed_search .btn{
    position: absolute;
    right: 6px;
    top: 8px;
    border:none;
    background: none;
    outline: none;
}
.fixed_search .btn:active:focus{
    outline: none;
}
.fixed_search .btn i{
    font-size:18px;
    color:var(--theme-color);
}

.fixed_search .close1{
    position: absolute;
    right: 6%;
    top:57px;
    width: 40px;
    height: 40px;
    opacity: 1;
    border:1px solid rgba(0,0,0,.9);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    transition:all .5s;
}

.fixed_search .close1 i{
    font-size:16px;
    color:#000;
    display: block;
    transition:all .3s;
}
.fixed_search .close1:hover{
    background: var(--secondary-color);
    border-color:var(--secondary-color);
}
.fixed_search .close1:hover i{
    color:#fff;
}
#header.header_on .fixed_search_on{
    height: 100px;
    top: 70px;
}
#header.header_on .fixed_search_on form{
    top: 25px;
}

#header.header_on .fixed_search_on .close1{
    top: 27px;
}

/* phone_fixed_menu */

.phone_fixed_menu{
    border-top: 1px solid #E5E9F2;
    width: 100%;
    height: 55px;
    background: #fff;
    position: fixed;
    z-index: 10000;
    bottom: 0;
    left: 0;
    display: none;
}
.phone_fixed_menu ul li{
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 55px;
    line-height: 1.2;
}
.phone_fixed_menu ul li a{
    display: block;
}
.phone_fixed_menu ul li i{
    font-size:20px;
    color:#333;
}
.phone_fixed_menu ul li p{
    color:#333;
    font-size:14px;
}


/* banner */
.banner{
    position: relative;
}
.banner .item{
    position: relative;
}
.banner .item .con{
    position: absolute;
    left:0;
    width: 100%;
    top:50%;
    transform: translate(0,-50%);
}
.banner .item .con .con_box{
    text-align: right;
}
.banner .item .con h4{
    font-size:48px;
    color:#fff;
    font-weight: bold;
    letter-spacing: 1px;
    margin:15px 0 20px;
}
.banner .item .con p{
    font-size:16px;
    color:#fff;
    font-family:'Segoe UI light';
    letter-spacing: 1px;
    margin-bottom: 50px;
}
.banner .owl-item:nth-child(2) .con .con_box{
    text-align: left;
}
.banner .item .img img{
    width:100%;
}

.banner .owl-pagination{
    position: absolute;
    bottom: 0;
    width:100%;
    text-align: center;
    left:0;
    height:40px;
}
.banner .owl-pagination>div{
    display: inline-block;
    width:7px;
    height:7px;
    background:rgba(255,255,255,.9);
    border-radius: 50%;
    text-indent: -9999px;
    margin:0 7px;
    border: 1px solid rgba(255,255,255,.9);
    position: relative;
}
.banner .owl-pagination>div.active:after{
    width:19px;
    height:19px;
    border-radius: 50%;
    content:'';
    display: block;
    position: absolute;
    border:1px solid rgba(255,255,255,.9);
    left:-7px;
    top: -7px;
}


/*首页css__start*/


/*公用头部*/

.tit_box1{
    text-align: center;
    padding: 70px 0 40px;
}

.tit_box1 .tit h4{
    font-size:40px;
    font-weight: bold;
    color:var(--theme-color);
}
.tit_box1 .tit p{
    font-size:14px;
    color:#888;
    margin-top: 15px;
}
.tit_box1 .tit .line{
    width: 40px;
    height: 2px;
    background: var(--theme-color);
    margin:15px auto 0;
}
.tit_box2 .tit h4{
    color:#fff;
}

.tit_box3 .tit h4{
    color: #222;
}

/* bg */

.bg1{
    background: linear-gradient( to right, var(--theme-color) 41% ,#fff 41%);
}
.bg2{
    background: #f4f4f4;
}
.bg3{
    background:url(../images/bg3.jpg) no-repeat center;
}
.bg4{
    background:url(../images/bg4.jpg) no-repeat center;
}


/* about */

.about{
    padding: 75px 0;
}
.about_tit{
    color:#fff;
}
.about_tit h4{
    font-family:Arial;
    font-weight: bold;
    font-size:60px;
    text-transform: uppercase;
}
.about_tit p{
    font-size:28px;
}
.about_tit span{
    font-size:40px;
    font-weight: bold;
    letter-spacing: 2px;
}
.about_tit span b{
    color:var(--secondary-color);
}

.about_con .con{
    font-size:16px;
    color:#333;
    line-height: 1.5;
}
.about_con a{
    font-size:14px;
    color:#fff;
    width: 120px;
    background: var(--theme-color);
    border-left:10px solid var(--secondary-color);
    text-align: center;
    height: 45px;
    line-height: 45px;
    display: block;
    margin-top: 50px;
}
.about_con a:hover{
    background: var(--secondary-color);
    border-left-width: 0;
}

/* about_infoCon */

.about_infoWrap{
    position: relative;
}
.about_infoCon{
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    padding-left: 41%;
}
.about_infoCon .con li{
    width: 200px;
    height: 180px;
    background: rgba(0,0,0,.6);
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#fff;
}
.about_infoCon .con li .num{
    font-size:42px;
    font-family: Impact;
    line-height: 1.7;
}
.about_infoCon .con li .num span{
    margin-left: 3px;
}
.about_infoCon .con li p{
    font-size:16px;
    font-weight: bold;
}
.about_infoCon .con li .line{
    width: 18px;
    height: 2px;
    background: var(--secondary-color);
    margin-top: 15px;
}

/* product */

.product_con li a{
    display: block;
    background: #fff;
}
.product_con li .img{
    padding: 20px;
}
.product_con li .con{
    padding:20px 50px 30px;
}
.product_con li .con h4{
    font-size:24px;
    font-weight: bold;
    color:#222;
    text-align: center;
}
.product_con li .con h4:after{
    content:'';
    display: block;
    background: var(--secondary-color);
    width: 20px;
    height: 2px;
    margin:15px auto 10px;
}
.product_con li .con p{
    font-size:14px;
}
.product_con li .con span{
    display: block;
    width: 100px;
    height: 36px;
    line-height: 34px;
    border:1px solid var(--theme-color);
    color:var(--theme-color);
    border-radius: 3px;
    text-align: center;
    margin:20px auto 0;
    transition:all .3s;
}
.product_con li:hover a{
    box-shadow: 0 3px 15px rgba(6,89,174,.25);
}
.product_con li:hover .con span{
    background: var(--theme-color);
    color:#fff;
}

.product_more a{
    display: block;
    width: 180px;
    height: 50px;
    line-height: 48px;
    color:#333;
    border:1px solid #666;
    border-radius: 3px;
    margin:60px auto 0;
    text-align: center;
    font-size:14px;
}
.product_more a:hover{
    border-color:var(--theme-color);
    background: var(--theme-color);
    color:#fff;
}


/* advantage_con */

.advantage_con{
    background: #fff;
}
.advantage_con li{
    padding:30px 50px 40px;
    flex:1;
    border-right: 1px solid #ddd;
    position:relative;
    transition:all .3s;
}
.advantage_con li:after{
    width: 0;
    height: 5px;
    background: var(--secondary-color);
    content:'';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition:all .3s;
}
.advantage_con li .img{
    position: relative;
}
.advantage_con li .img span{
    position: absolute;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    background:var(--secondary-color);
    color:#fff;
    font-family: Impact;
    display: block;
    z-index: 2;
    left: -20px;
    top: -20px;
    text-align: center;
    line-height: 56px;
    font-size:24px;
}
.advantage_con li .con{
    padding: 25px 0 0;
    border-bottom: 5px solid #fff;
}
.advantage_con li .con h4{
    font-size:18px;
    font-weight: bold;
    color:#222;
    padding-left: 16px;
    position: relative;
}
.advantage_con li .con h4:before{
    content:'';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 2px;
}
.advantage_con li .con p{
    font-size:14px;
    margin-top: 15px;
    color:#777;
}
.advantage_con li:hover{
    box-shadow:0 3px 12px rgba(0,0,0,.2);
}
.advantage_con li:hover:after {
    width: 100%;
}


/* news_con */

.news_con li .con{
    padding: 30px 30px;
}
.news_con li .tit{
    display: flex;
}
.news_con li .tit .time{
    background: var(--secondary-color);
    width: 62px;
    height: 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size:14px;
    font-family: Arial;
    line-height: 1.5;
    color:#fff;
}
.news_con li .tit h4{
    flex:1;
    padding-left: 25px;
    font-size:18px;
    color:#222;
    font-weight: bold;
    line-height: 1.67;
}
.news_con .column{
    width: 140px;
    height: 40px;
    background: var(--theme-color);
    margin: 50px auto 0;
    color:#fff;
    font-size:18px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
}

.news_left li a{
    background: #f4f4f4;
    display: block;
}
.news_left li .desc{
    font-size:14px;
    color:#777;
    margin-top: 25px;
}
.news_right ul{
    background: #f4f4f4;
}
.news_right li .con{
    padding-top:24px;
}


/* join_con */

.join_con{
    padding: 115px 0;
}
.join_con .tit{
    width: 220px;
    height: 220px;
    background: linear-gradient(to right top, var(--theme-color) , var(--secondary-color));
    position: relative;
}
.join_con .tit:before{
    width: 180px;
    height: 180px;
    content:'';
    border:1px solid #fff;
    display: block;
    position: absolute;
    left: 20px;
    top: 20px;
}
.join_con .tit span{
    font-size:54px;
    color:#fff;
    font-weight: bold;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    letter-spacing: 4px;
}
.join_con .con{
    padding:30px 0 0 120px;
    color:#fff;
}
.join_con .con h4{
    font-size:45px;
    font-weight: bold;
}
.join_con .con p{
    font-size:20px;
    font-weight: bold;
    margin:10px 0 30px;
}
.join_con .con a{
    width: 144px;
    height: 44px;
    background: var(--theme-color);
    color:#fff;
    line-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:14px;
    border-radius: 3px;
}
.join_con .con a i{
    font-size:20px;
    margin-right: 10px;
}
.join_con .con a:hover{
    background: var(--secondary-color);
}


/*页底css*/

.footer{
    background:var(--theme-color);
    overflow: hidden;
    padding: 45px 0 0;
    line-height: 1.8;
    color:#fff;
    font-size:14px;
}
.footer .menu dl{
    margin-right: 120px;
}
.footer .menu dl dt{
    font-size:16px;
    color:#fff;
    font-weight: normal;
    margin-bottom: 10px;
}
.footer .menu dl dd{
    line-height: 30px;
}
.footer .menu dl dd a{
    font-size:14px;
    color:#fff;
    display: block;
}
.footer .img{
    max-width: 100px;
    text-align: right;
}
.footer .img img{
    margin-bottom: 10px;
}
.footer .img a{
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #bbb;
    text-align: center;
    margin-right: 10px;
}
.footer .img a:hover{
    background: var(--secondary-color);
}
.footer .img a i{
    line-height: 30px;
    color:#fff;
    font-size:16px;
}

.footer_ft{
    border-top: 1px solid rgba(255,255,255,.2);
    margin-top: 40px;
    padding: 15px 0;
}
.footer_con .links a{
    color:#fff;
    display: inline-block;
    margin-right: 16px;
}
.footer_con .con span{
    display: inline-block;
    margin-right: 20px;
}
.footer_con .con a{
    color:#fff;
}


/* fixed_rightbtn */

.fixed_rightbtn{
    position: fixed;
    z-index: 999;
    right: 20px;
    top: 30%;
}
.fixed_rightbtn li{
    background: rgba(0,99,174,.9);
    width: 75px;
    height: 75px;
    border-radius: 20px;
    margin-bottom: 5px;
    color:#fff;
    position: relative;
}
.fixed_rightbtn li a{
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 75px;
    line-height: 1.2;
    position: relative;
    
}
.fixed_rightbtn li i{
    display: block;
    font-size:30px;
}
.fixed_rightbtn li p{
    position:absolute;
    height: 75px;
    right:-320px;
    top: 0;
    background: #fff;
    box-shadow: -5px 0 10px rgba(0,99,174,.4);
    color:#333;
    font-size:24px;
    width: 290px;
    text-align: center;
    line-height: 75px;
    transition:all .3s;
    border-radius: 10px;
}
.fixed_rightbtn li:hover p{
    right: 0;
}
#layer_message{
    padding:20px 25px;
}
#code_img{
    height:34px;
}
#layer_message p{
    margin-top: 20px;
    font-size:14px;
}

/*首页css__end*/


/*内页*/

.ibanner{
    position: relative;
}
.ibanner .column{
    position: absolute;
    left: 150px;
    bottom: 60px;
}
.ibanner .column h4{
    font-size:36px;
    font-weight: bold;
    color:#fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.inner_tit{
    height: 70px;
    line-height: 70px;
    background: #f7b52c;
    padding: 0 50px;
    font-size:30px;
    color:#000;
    overflow: hidden;
}




/* 内页分类 */



/* 左侧 */

.inner_menutit{
    height:80px;
    font-size:30px;
    font-weight: bold;
    line-height:80px;
    background: var(--theme-color);
    color:#fff;
    overflow: hidden;
    text-align: center;
    text-transform: capitalize;
}
.inner_menutit span{
    font-size:16px;
    font-weight: normal;
    margin:0 0 0 7px;
}
.inner_menu>ul{
    border-top:none;
    border:1px solid #ddd;
    padding: 10px;
}
.inner_menu>ul>li{
    margin-bottom: 10px;
}
.inner_menu>ul>li:last-child{
    margin-bottom: 0;
}
.inner_menu>ul>li>.item {
    align-items: center;
    padding: 0 10px 0 13px;
    background: #f0f0f0;
    height:50px;
}
.inner_menu>ul>li>.item a{
    display: block;
    height:50px;
    line-height:50px;
    padding:0 10px 0 19px;
    color:#333;
    font-size:16px;
    position: relative;
    width: 100%;
}
.inner_menu>ul>li>.item a:before{
    content:'';
    width: 6px;
    height: 6px;
    background: #333;
    display: block;
    position: absolute;
    left: 0;
    top:24px;
    border-radius: 50%;
    transition:all .3s;
}
.inner_menu>ul>li>.item i{
    color:#666;
    transition:all .3s;
}
.inner_menu>ul>li>.item:hover,.inner_menu>ul>li.active>.item{
    background: var(--secondary-color);
}
.inner_menu>ul>li>.item:hover a,.inner_menu>ul>li.active>.item a{
    color:#fff;
}
.inner_menu>ul>li>.item:hover a:before,.inner_menu>ul>li.active>.item a:before{
    background: #fff;
}
.inner_menu>ul>li>.item:hover i,.inner_menu>ul>li.active>.item i{
    color:#fff;
}

.inner_lefttit{
    font-size:24px;
    color:#222;
    height:60px;
    line-height:58px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.inner_lefttit:after{
    display: block;
    content:'';
    width: 100px;
    height: 4px;
    background: #cf000c;
    position: absolute;
    bottom: -2px;
}
.inner_leftborder{
    border:1px solid #ddd;
    padding:15px 10px;
}
.inner_leftborder .tit{
    font-size:18px;
    font-weight: bold;
    color:#222;
    padding-left: 15px;
    position: relative;
}
.inner_leftborder .tit:before{
    width: 4px;
    height: 20px;
    background: var(--theme-color);
    content:'';
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
}

.inner_leftnews ul li{line-height: 24px;color:#333;margin-top: 5px;font-size:15px;}
.inner_leftnews ul li a{
    font-size:14px;
    display: block;
    height: 60px;
    line-height: 60px;
    border-bottom: 1px dashed #ddd;
    color:#333;
    position: relative;
    padding-left: 14px;
}
.inner_leftnews ul li a:before{
    width: 3px;
    height: 3px;
    background:var(--theme-color);
    content:'';
    display: block;
    position: absolute;
    left: 5px;
    top: 50%;
}
.inner_leftnews ul li a:hover{
    color:var(--secondary-color);
}
.inner_leftnews ul li p{
    font-size:13px;
    color:#999;
}

.inner_lefttag ul{
    padding:20px 0;
}
.inner_lefttag li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}
.inner_lefttag li a{
    height:34px;
    background: #eee;
    display: block;
    border-radius: 2px;
    color:#666;
    font-size:14px;
    padding:0 12px;
    line-height: 34px;
}
.inner_lefttag li a:hover{
    background: var(--secondary-color);
    color:#fff;
}

.page_about .tit{
    font-size:24px;
    color:#000;
    font-weight: bold;
    padding: 0 0 20px;
}
.page_about .tit:after{
    width: 70px;
    height: 3px;
    background: #f7b52c;
    display: block;
    content:'';
    margin-top: 7px;
}
.page_about .con{
    font-size:16px;
    color:#333;
}
.page_about ul{
    margin-top: 30px;
}
.page_about ul li{
    display: flex;
    margin-bottom: 50px;
}
.page_about ul li i{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f7b52c;
    color:#fff;
    font-size:24px;
    text-align: center;
    line-height: 80px;
    font-size:36px;
    margin-right: 20px;
}
.page_about ul li h4{
    flex:1;
    font-weight: bold;
    color:#000;
    font-size:22px;
}
.page_about ul li h4 span{
    display: block;
    font-size:14px;
    color:#333;
    font-weight: normal;
    line-height: 1.6;
    margin-top: 15px;
}

/* pos */

.inner_pos{
    height: 70px;
    padding-top: 10px;
    line-height: 60px;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    font-size:13px;
    color:#888;
}
.inner_pos .tit{
    font-size:24px;
    color:#333;
    flex:1;
}
.inner_pos .pos a{
    color:#888;
}
.inner_pos .pos span i{
    color:#888;
    margin-right: 10px;
}
.inner_pos .pos a:hover{
    color:var(--theme-color);
}

/* inner_pagepos */

.inner_pagepos{
    border-bottom: 1px solid #ddd;
}
.inner_pagepos>.flex{
    align-items: center;
    height: 70px;
}
.inner_pagepos .pos{
    flex:1;
    font-size:13px;
    color:#999;
    align-items: center;
}
.inner_pagepos .pos a{
    color:#999;
}
.inner_pagepos .pos i{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    line-height: 28px;
    text-align: center;
    color:#fff;
    font-size:13px;
    background: #b81c25;
    display: block;
    margin-right: 10px;
}
.inner_pagepos .tit{
    display: inline-block;
    font-size:16px;
    color:#b81c25;
    position: relative;
    padding: 0 10px;
}
.inner_pagepos .tit:after{
    content:'';
    display: block;
    width: 100%;
    background: #b81c25;
    position: absolute;
    height: 5px;
    left:0;
    bottom: -22px;
}



/* 内页二级分类显示 */

.inner_sublist{
    transition: all .3s;
    padding: 0 20px;
    background:rgba(0,0,0,.02);
}
.inner_sublist li{
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.inner_sublist li a{
    color:#151515;
    font-size:14px;
    display: block;
    line-height: 3;
}
.inner_sublist li a i{
    font-size:12px;
    margin-right: 5px;
}

/* 单页内容 */

.page_index{
    padding:20px 0;
    color:#333;
    line-height: 1.8;
    font-size:16px;
}
.page_index p{
    margin-top: 10px;
}
.page_index img{
    
}


.xg_news{
    margin:40px 0 0;
}
.xg_news h3{
    font-size:16px;
    border-bottom: 1px solid #eee;
    line-height:2;
    color:#3c3b5c;
}
.xg_news ul{
    margin-bottom: 20px;
}
.xg_news ul li {
    padding:15px 0 0;
}
.xg_news ul li .img{
    width:80px;
}
.xg_news ul li .con{
    flex:1;
    margin-left: 20px;
}
.xg_news ul li .con a{
    font-size:14px;
    display: block;
    line-height: 1.2;
    color:#555;
    margin-bottom: 3px;
}
.xg_news ul li .con span{
    color:#999;
}
.xg_news .tags{
    padding: 10px 0 20px;
}
.xg_news .tags a{
    display: inline-block;
    padding: 3px 10px;
    background: #e7b20e;
    margin:0 5px 5px 0;
    color:#fff;
    font-size:14px;
    border-radius:3px;
}
.xg_news dl{
    margin:15px 0 0;
    border:1px solid #eee;
}
.xg_news dl dt{
    width: 100%;
}
.xg_news dl dd{
    font-size:16px;
    text-align: center;
    font-weight: bold;
    color:#151515;
    line-height: 2;
}

/* 产品列表 */

.page_picList {
    margin-top: 30px;
}
.page_picList>.row{
    margin:0 -20px;
}
.page_picList li{
    padding: 0 20px;
    margin-bottom: 30px;
}
.page_picList li .img{
    overflow: hidden;
    transition:all .3s;
    border:1px solid #ddd;
}
.page_picList li img{
    transition: all 0.6s;
    margin:0;
}
.page_picList li .con h4{
    font-size:20px;
    color:#222;
    font-weight: bold;
    height: 65px;
    line-height: 65px;
    text-align: center;
}
.page_picList li .btns{
    justify-content: center;
}
.page_picList li .btns a{
    display: block;
    width: 100px;
    height: 36px;
    line-height: 34px;
    color:#999;
    border:1px solid #ddd;
    border-radius: 30px;
    margin:0 10px;
    font-size:14px;
    text-align: center;
}
.page_picList li .btns a:hover{
    background:var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}


.page_picList li:hover .con h4{
    color:var(--theme-color);
}


/* page_serviceList */

.page_serviceList_tit{
    padding: 80px 0 55px;
    text-align: center;
}
.page_serviceList_tit h4{
    color:#b81c25;
    font-size:48px;
    letter-spacing: 2px;
}
.page_serviceList_tit h4 i{
    font-size:80px;
    font-style: inherit;
}
.page_serviceList_tit h4 span{
    font-size:66px;
}
.page_serviceList_tit p{
    font-size:24px;
    color:#333;
    margin:10px 0 0;
}
.page_serviceList{
    padding: 0 0 100px;
}
.page_serviceList li{
    transition:all .3s;
    cursor: help;
}
.page_serviceList li:nth-child(3) .col-md-6:first-child,.page_serviceList li:nth-child(4) .col-md-6:first-child,.page_serviceList li:nth-child(7) .col-md-6:first-child,.page_serviceList li:nth-child(8) .col-md-6:first-child{
    float: right;
}
.page_serviceList .col-md-6{
    padding:0;
}
.page_serviceList .con{
    padding: 45px 50px 0;
}
.page_serviceList .con h4{
    font-size:16px;
    color:#333;
    font-weight: bold;
}
.page_serviceList .con h4:after{
    display: block;
    content:'';
    width: 22px;
    height: 1px;
    background: #000;
    margin:30px 0 35px;
}
.page_serviceList .con p{
    font-size:14px;
    color:#666;
    line-height: 1.9;
}
.page_serviceList li:hover{
    background: #b81c25;
}
.page_serviceList li:hover h4{
    color:#fff;
}
.page_serviceList li:hover h4:after{
    background: #fff;
}
.page_serviceList li:hover p{
    color:#fff;
}


/* page_saleservice */

.page_saleservice{
    padding: 0 0 100px;
}
.page_saleservice .con1{
    padding: 60px 0 70px;
    border-bottom: 1px solid #ddd;
}
.page_saleservice h6{
    color:#333;
    font-size:16px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.page_saleservice h6 span{
    color:#b81c25;
}
.page_saleservice h5{
    color:#b81c25;
    font-size:16px;
    margin:0 0 8px;
    padding-top: 60px;
}
.page_saleservice .con1 h5{
    padding: 0;
}
.page_saleservice p{
    font-size:14px;
    line-height: 2;
    color:#333;
}

/* page_imgList */


.page_imgList{
    padding-top: 20px;
}
.page_imgList li{
    margin-bottom: 20px;
}
.page_imgList li a .img{
    border:1px solid #ddd;
    padding: 20px;
    transition:all .3s;
}
.page_imgList li a .con h4{
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 20px;
    color:#333;
    transition:all .3s;
}
.page_imgList li a:hover .img{
    border-color: var(--theme-color);
}
.page_imgList li a:hover .con h4{
    color:var(--theme-color);
}


/* page_jobs */


.page_jobs{
    padding: 20px 0 0;
}
.page_jobs ul li .flex{
    border-bottom: 1px solid #cecece;
    padding:30px 0;
}
.page_jobs ul li .tit{
    flex:1;
    padding-right: 10px;
}
.page_jobs ul li .tit h4{
    font-size:20px;
    color:#333;
    font-weight: bold;
}
.page_jobs ul li .tit p{
    font-size:14px;
    margin-top:10px;
    color:#999;
}
.page_jobs ul li .btns{
    width: 150px;
    height: 40px;
    background: var(--theme-color);
    text-align: center;
    line-height:40px;
    font-size:16px;
    cursor: pointer;
    margin-top: 10px;
    transition:all .3s;
    color:#fff;
}
.page_jobs ul li .btns i{
    font-size:14px;
    margin-left: 10px;
    display: inline-block;
    transition:all .36s;
    line-height: 35px;
}
.page_jobs ul li .con{
    font-size:14px;
    color:#666;
    padding:30px;
    line-height: 2;
    display: none;
    background: #f7f8fa;
    margin-top: 20px;
}
.page_jobs ul li .con h5{
    font-size:16px;
    font-weight: bold;
    color:#333;
    margin-bottom: 10px;
}
.page_jobs ul li .con hr{
    border-color:#ddd;
}
.page_jobs ul li .con .info{
    margin-top: 20px;
    color:#444;
    font-size:16px;
    line-height: 1.7;
}
.page_jobs ul li .btns:hover,.page_jobs ul li .btns_on{
    background: var(--secondary-color);
}
.page_jobs ul li .btns:hover i,.page_jobs ul li .btns_on i{
    transform: rotate(180deg);
}

/*新闻列表*/

.page_newsList{
    
}
.page_newsList li{
    border-bottom: 1px dashed rgba(0,0,0,.05);
    transition: all .3s ease-out 0s;
    background: #fff;
    position: relative;
    padding: 20px;
}
.page_newsList li a{
    display: block;
    
}
.page_newsList .col-md-3,.page_newsList .col-md-9{
    z-index: 3;
}
.page_newsList li .time{
    color:#999;
    display: inline-block;
    margin:12px 0;
    transition: all .3s ease-out 0s;
    font-size: 14px;
}
.page_newsList li .time span{
    margin:0 20px 0 0;
}

.page_newsList li h4{
    color: #333;
    transition: all .3s ease-out 0s;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 0 0;
}
.page_newsList li p{
    color: #666;
    font-size: 14px;
    line-height: 26px;
}
.page_newsList li:after{
    background: var(--theme-color);
    width: 0;
    height: 100%;
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    transition:all .5s;
}
.page_newsList li:hover:after{
    width: 100%;
}
.page_newsList li:hover{
    
}

.page_newsList li:hover h4{
    color: #fff;
}
.page_newsList li:hover .time{
    color:#ddd;
}
.page_newsList li:hover p{
    color:#eee;
}

/* 单页关于我们 */

.page_aboutindex{
    padding: 80px 0;
}
.page_aboutindex .con{
    padding: 20px 0 0 50px;
}
.page_aboutindex p{
    font-size:14px;
    color:#333;
    line-height: 2;
}
.page_aboutindex .con p{
    margin-bottom: 30px;
}
.page_aboutindex .con1{
    background: url(../images/iabout_2.jpg) no-repeat;
    height: 500px;
    margin:60px 0 80px;
}
.page_aboutindex .con1 p{
    padding: 200px 0 0;
}
.page_aboutindex .con2{
    background: url(../images/iabout_3.jpg) no-repeat;
    height: 340px;
    color:#fff;
    padding: 50px 0 0;
}
.page_aboutindex .con2 h4{
    font-size:30px;
    font-weight: bold;
}
.page_aboutindex .con2 span{
    font-size:16px;
    display: block;
    margin:10px 0 15px;
}
.page_aboutindex .con2 h6{
    font-size:20px;
}
.page_aboutindex .con2 p{
    color:#fff;
    margin-top: 15px;
}


/* 单页联系我们 */
.page_contact {
    
}
.page_contact .tit{
    color:#333;
    font-size:24px;
    margin-bottom: 20px;
    font-weight: bold;
}
.page_contact li{
    display: flex;
    height: 50px;
    line-height: 50px;
}
.page_contact li i{
    color:#333;
    font-size:18px;
    display: block;
    text-align: center;
    margin-right:15px;
}
.page_contact .txt{
    font-size:16px;
    color:#333;
    flex:1;
}
.page_contact .con .img{
    max-height: 120px;
    align-items: center;
    font-size:14px;
    color:#777;
}
.page_contact .con .img p{
    margin-left: 20px;
}
.page_contact .map{
    margin-top: 40px;
}



/* 新闻详情 */

.page_newshow{
    
}
.page_newshow h3{
    font-size:24px;
    font-weight: bold;
    color:#333;
    text-align: center;
}
.page_newshow .desc{
    background: #f7f7f7;
    padding: 14px 20px;
    font-size:14px;
    text-align: center;
}
.page_newshow .info{
    font-size:14px;
    color:#999;
    text-align: center;
    padding: 15px 0 20px;
    border-bottom: 1px dashed #ddd;
}
.page_newshow .info span{
    margin:0 15px;
    display: inline-block;
}
.page_newshow .con{
    font-size:14px;
    color:#333;
    padding: 30px 0;
    line-height: 1.8;
}
.page_newshow .con img{
    margin:auto;
}

/* page_blogsShow */

.page_blogsShow{
    background: #fff;
}
.page_blogsShow .block1{
    padding: 30px 55px 80px;
    border-bottom: 1px solid #ddd;
}
.page_blogsShow h3{
    font-size:20px;
    color:#333;
}
.page_blogsShow .info{
    font-size:14px;
    color:#999;
    padding:15px 0;
}
.page_blogsShow .con{
    font-size:14px;
    color:#333;
}
.page_blogsShow .share{
    margin:10px 0 30px ;
}
.page_blogsShow .share li{
    margin-right: 10px;
}
.blogs_message{
    padding: 30px 55px 80px;
}
.blogs_message h3{
    position: relative;
}
.blogs_message h3:before{
    content:'';
    width: 4px;
    height: 18px;
    display: block;
    position: absolute;
    top: 0;
    left:-15px;
    background: #0063ae;
}
.blogs_message label{
    font-size:14px;
    font-weight: normal;
}
.blogs_message form{
    margin-top:20px;
}
.blogs_message .form-group{
    margin-bottom: 25px;
}


/* 相关新闻 */

.related_tit{
    height:50px;
    line-height:50px;
    margin:20px 0 15px;
    background: #f3f3f3;
}
.related_tit span{
    display: block;
    background: var(--theme-color);
    font-size:18px;
    color:#fff;
    font-weight: bold;
    width: 120px;
    text-align: center;
    position: relative;
}
.related_tit span:after{
    width: 10px;
    height: 100%;
    background: var(--secondary-color);
    content:'';
    display: block;
    position: absolute;
    right: -10px;
    top: 0;
}

.related_tit1{
    height: 40px;
    margin:30px 0 20px;
}
.related_tit1 span{
    width: 30px;
    display: block;
    line-height: 40px;
    background: var(--theme-color);
    text-align: center;
    font-size:24px;
    color:#fff;
    position: relative;
}
.related_tit1 span:after{
    content: '';
    width: 0;
    height: 0;
    border-bottom: 40px solid var(--theme-color);
    border-right: 15px solid transparent;
    position: absolute;
    right: -15px;
    top: 0;
}
.related_tit1 h4{
    font-size:16px;
    color:#fff;
    background: var(--secondary-color);
    line-height: 40px;
    text-align: center;
    width: 105px;
    position: relative;
    margin-left: 18px;
    font-weight: bold;
}
.related_tit1 h4:before{
    content: '';
    width: 0;
    height: 0;
    border-top: 40px solid var(--secondary-color);
    border-left: 15px solid transparent;
    position: absolute;
    left: -15px;
    top: 0;
}
.related_news ul{
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}
.related_news li{
    height: 42px;
    align-items: center;
    flex-basis: 45%;
    flex-grow: 1;
    margin:0 16px;
}
.related_news li:nth-child(2n){
    margin-right: 0;
}
.related_news li a{
    color:#444;
    position: relative;
    font-size:14px;
    padding-left: 16px;
    flex:1;
}
.related_news li a:before{
    width:7px;
    height:7px;
    border-radius: 50%;
    background: #ddd;
    content:'';
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
}
.related_news li span{
    color:#999;
    font-size:14px;
}
.related_news li a:hover{
    color:var(--theme-color);
}

/* 相关案例 */

.latest_cases li{
    margin-bottom: 10px;
}
.latest_cases li p{
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    text-align: center;
}


/* 产品详情页 */

.page_picShow{
    margin-top: 30px;
}
.picShow_box .swiper-pagination{
    bottom: 0;
    height: 30px;
    background: rgba(0,0,0,.1);
}
.picShow_box .swiper-pagination-bullet{
    width: 15px;
    height: 3px;
    border-radius: 0;
    opacity: 1;
    background: rgba(255,255,255,.6);
    margin:0 3px!important;
}
.picShow_box .swiper-pagination-bullet-active{
    background: #f7b52c;
}
.picShow_item{
   border:1px solid #ddd;
}
.picShow_thumbs{
   box-sizing: border-box;
   margin:12px 0 0;
}

.picShow_thumbs .swiper-slide{
    border:1px solid #ddd;
    cursor: pointer;
}
.picShow_thumbs .swiper-slide-thumb-active{
    border-color: #0063ae;
}
.picShow_thumbs .swiper-button-black:after{
    font-size:20px;
    background: #fff;
}
.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white{
    color: rgba(0,0,0,.5);
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size:24px;
}

.picShow_tit{
    margin:10px 0 0;
    padding: 0 0 0 30px;
}
.picShow_tit h3{
    font-size:30px;
    color:#222;
    font-weight: bold;
    max-height: 78px;
    overflow: hidden;
}
.picShow_tit h3:before{
    content:'';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--theme-color);
    margin-bottom:20px;
    
}
.picShow_tit p{
    font-size:14px;
    color:#666;
    padding:20px 0 60px;
}
.picShow_tit .btns {
    margin:30px 0 0;
}
.picShow_tit .btns a{
    display: flex;
    background: var(--theme-color);
    border-radius: 30px;
    color:#fff;
    align-items: center;
    margin-right: 20px;
    width:140px;
    height: 50px;
    line-height: 50px;
    justify-content: center;
    font-size:16px;
    font-weight: bold;
}

.picShow_tit .btns a i{
    color:#fff;
    font-weight: normal;
    font-size:18px;
    text-align: center;
    margin:0 5px;
}
.picShow_tit .btns a.a2{
    background:var(--secondary-color);
    color:#222;
}
.picShow_tit .btns a.a2 i{
    color:#333;
}
.page_picShow .page_index{
    padding:10px 0;
}

.picShow_message{
    background: #f7f7f7;
    padding: 0 0 70px;
    margin-bottom: 40px;
}
.picShow_message .related_tit{
    padding: 0 10px;
}
.picShow_message form{
    padding: 30px 40px 0;
}
.picShow_message label{
    font-size:14px;
    font-weight: normal;
    text-transform: capitalize;
}
.picShow_message label span{
    color:red;
}

/* related_products */

.related_products li{
    margin-right: 14px;
}
.related_products li:last-child{
    margin-right: 0;
}
.related_products li .img{
    border:1px solid #ddd;
}
.related_products li h4{
    color:#333;
    font-size:14px;
    margin:20px 0 0;
    padding: 0 10px;
    text-align: center;
}
.related_products li:hover h4{
    color:var(--theme-color);
}

/*inner_share_box*/

.inner_share_box{
    margin:20px 0;
    line-height: 28px;
}
.inner_share_box .tag{
    flex:1;
}
.inner_share_box .tag span{
    font-size:16px;
}
.inner_share_box .tag i{
    width: 28px;
    height: 28px;
    background: #f7b52c;
    border-radius: 50%;
    font-size: 14px;
    color:#fff;
    text-align: center;
    line-height: 28px;
    display: inline-block;
    margin:0 10px 0 0;
}
.inner_share_box .tag a{
    color:#333;
    font-size:16px;
    margin:0 5px 0 0;
}


/* 案例列表 */

.page_caseList{
    padding: 20px 0 0;
}
.page_caseList li{
    margin-bottom:20px;
}
.page_caseList li a{
    display: block;
    background: #fff;
    overflow: hidden;
}
.page_caseList li .con{
    padding: 50px 15px 0 0;
}
.page_caseList li .con h4{
    font-size:20px;
    color:#151515;
    font-weight: bold;
}
.page_caseList li .con p{
    font-size:14px;
    margin:10px 0 20px;
    color:#777;
}
.page_caseList li .con span{
    display: block;
    background: #e7b20e;
    color:#fff;
    display: inline-block;
    padding: 5px 20px;
    font-size:14px;
    transition:all .3s;
}
.page_caseList li .con span:hover{
    background: #3f4959;
    color:#fff;
}

/* blogs */
.inner_blogs{
    background: #f6f6f6;
    padding: 50px 0 60px;
}
.page_blogsList li{
    background: #fff;
    padding:30px 50px;
    border-bottom: 3px solid #ddd;
    margin-bottom: 27px;
}
.page_blogsList li h4{
    color:#333;
    font-size:20px;
    line-height: 1;
    position: relative;
}
.page_blogsList li h4:before{
    content:'';
    display: block;
    width: 4px;
    height: 16px;
    position: absolute;
    top: 0;
    left: -15px;
    background: #0063ae;
}
.page_blogsList li .info{
    color:#999;
    font-size:14px;
    margin:15px 0;
}
.page_blogsList li .con{
    color:#333;
    font-size:14px;
    line-height: 1.8;
}
.page_blogsList li .more{
    display: block;
    margin-top:30px;
    display: inline-block;
    color:#0063ae;
    border-bottom: 1px solid #0063ae;
}
.page_blogs_right .blog_item{
    background: #fff;
    margin-bottom: 30px;
    padding: 30px;
    border-top: 3px solid #0063ae;
}
.page_blogs_right .blog_item .key{
    height: 45px;
    flex:1;
    border:1px solid #ddd;
    border-right:none;
    padding: 0 10px;
    font-size:14px;
}
.page_blogs_right .blog_item .btn{
    background: #f7c200;
    border-radius: 0;
    font-size:14px;
    text-transform: capitalize;
    color:#000;
}
.page_blogs_right .blog_item h4{
    font-size:18px;
    color:#333;
    padding: 0 0 15px;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.page_blogs_right .blog_item h4:after{
    content:'';
    width: 80px;
    height: 3px;
    background: #0063ae;
    border-radius: 1px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
}
.page_blogs_right .blog_item li{
    line-height: 1.5;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
}
.page_blogs_right .blog_item li a{
    display: flex;
    vertical-align: middle;
}
.page_blogs_right .blog_item li i{
    font-size:18px;
    color:#333;
    line-height: 1.2;
    margin-right: 8px;
}
.page_blogs_right .blog_item li span{
    font-size:14px;
    color:#333;
}

.page_hotpic .tit{
    font-size:18px;
    text-align: center;
    position: relative;
    margin-bottom: 7px;
}
.page_hotpic .tit::before,.page_hotpic .tit::after{
    width:50px;
    height:1px;
    background: #eee;
    content:'';
    display:block;
    position: absolute;
    top:15px;
    left:0;
}
.page_hotpic .tit::after{
    left:auto;
    right:0;
}
.page_hotpic li{
    margin-bottom: 10px;
}
.page_hotpic li h4{
    font-weight: normal;
    text-align: center;
    font-size:14px;
    padding: 10px 0 5px;
}

/*翻页*/

.return_page{
    border-top: 1px solid #ddd;
    padding: 20px 0 0;
}
.return_page p{
    flex:1;
    display: flex;
    background: #eee;
    height: 40px;
    margin-right: 20px;
}
.return_page p:last-child{
    margin-right: 0;
}
.return_page p span{
    font-size:14px;
    color:#333;
    line-height:40px;
    overflow: hidden;
    height:40px;
    display: block;
    flex:1;
    margin:0 10px;
}
.return_page p i{
    font-size:14px;
    text-align: center;
    display: inline-block;
    color:#fff;
    font-style: inherit;
    border-radius: 3px;
}
.return_page p a{
    color: #333;
}
.return_page .go_history a{
    background: #3c4147;
    width:70px;
    height:30px;
    line-height:30px;
    text-align: center;
    color:#fff;
    position: absolute;
    right:0;
    top:50%;
    display:block;
    transform: translateY(-50%);
}

/* 页码 */

.pagination{
    text-align: center;
    display: block;
}
.pagination li{
    display: inline-block;
    margin:0 1px;
}
.pagination li span,.pagination li a{
    display: block;
    padding:0 10px;
    line-height:29px;
    background: #f7f7f7;
    color:#333;
    font-size:13px;
}
.pagination li.active a{
    background: var(--theme-color);
    color:#fff;
    border-color:var(--theme-color);
}



/*在线留言*/
.my_form_p{font-size:18px;margin-top: 30px;}
#my_form{
    padding: 30px 0 0;
}
#my_form .table{
    width: 100%;
}
#my_form .tr{
    float:left;
    width: 48%;
    margin-bottom: 15px;
}
#my_form .tr:nth-child(2n){
    margin-left:4%;
}
#my_form .tr.content{
    width: 100%!important;
    display: flex;
    margin-left:0;
}

#my_form .tr input,#my_form .tr textarea{
    height:40px;
    width: 100%!important;
    border: 1px solid #ccc;
    padding: 0 10px;
    color: #333;
    outline: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 微软雅黑;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#my_form .tr input:focus,#my_form .tr textarea:focus{
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}
#my_form .tr ::placeholder{
    color: #999;
    font-family:"微软雅黑";
    font-size: 14px;
}
#my_form .tr textarea{
    height:100px;
    padding-top: 6px;
}
#my_form .btn{
text-align: center
}
#my_form .btn .input{
    display: inline-block;
    padding: 8px 15px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 4px;
}
#my_form .btn .input:first-child{
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
/*#my_form .btn input:first-child:focus{
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}*/

.bdsharebuttonbox span{
    line-height:30px;
}